{% extends "base.html" %} {% block title %}Отчет по попытке{% endblock %} {% block content %}

Отчет по попытке

Пользователь: {{ user.full_name if user.full_name else user.username }}
Тест: {{ test.title }}
Дата начала: {{ attempt.started_at.strftime('%d.%m.%Y %H:%M') }}
{% if attempt.completed_at %} Завершено: {{ attempt.completed_at.strftime('%d.%m.%Y %H:%M') }}
{% endif %} {% if attempt.score %} Оценка: {{ attempt.score }} {% endif %}

Правильно {{ total_correct }} / {{ total_questions }}
{% for item in report_rows %}

Вопрос {{ loop.index }}

{{ item.question.question_text }}

{% if item.unanswered %} Без ответа {% elif item.is_correct %} Верно {% else %} Ошибка {% endif %}
{% endfor %} {% endblock %}